From ac050dd42047c7375bdaa916ac4b7c4d46fdfabc Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Tue, 5 Mar 2024 15:09:24 -0600 Subject: [PATCH] Better docs for the pgwui.client_encoding setting --- examples/etc/pgwui.ini | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/etc/pgwui.ini b/examples/etc/pgwui.ini index 418378e..d3ef8ca 100644 --- a/examples/etc/pgwui.ini +++ b/examples/etc/pgwui.ini @@ -29,15 +29,15 @@ pgwui.pg_port = 5432 # Not having the setting is the same as "", the empty string. # pgwui.default_db = -# The encoding used for strings on the client-side. +# The (PostgreSQL-named) encoding used for strings on the client-side. +# The list of PostgreSQL encodings can be found at: +# https://www.postgresql.org/docs/current/multibyte.html#MULTIBYTE-CHARSET-SUPPORTED # This setting defaults to "auto", the special PostgreSQL value which # sets the client_encoding based on the encoding of the client # system's locale. # Set this value to "", the empty string, to use the server's encoding # as the client encoding. (pgwui.client_encoding =) (or just omit the # declaration) -# The list of PostgreSQL encodings can be found at: -# https://www.postgresql.org/docs/current/multibyte.html#MULTIBYTE-CHARSET-SUPPORTED # pgwui.client_encoding = auto -- 2.34.1